From ce073aac7dd120cc930c3f6d1f5e7334f96c8f6e Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Wed, 25 Nov 1998 17:13:14 +0000 Subject: [PATCH] Replaced pushd and popd calls with equivalent shell code. pushd and popd are not supported by ksh or sh [under Solaris at least]. --- autogen.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index 74950e2564..76d24de3a1 100755 --- a/autogen.sh +++ b/autogen.sh @@ -4,7 +4,8 @@ srcdir=`dirname $0` test -z "$srcdir" && srcdir=. -pushd $srcdir +ORIGDIR=`pwd` +cd $srcdir PROJECT=Gtk+ TEST_TYPE=-d FILE=gdk @@ -60,7 +61,7 @@ aclocal $ACLOCAL_FLAGS automake $am_opt autoconf -popd +cd $ORIGDIR $srcdir/configure "$@" -- 2.30.2